home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / OS / FWOSMisc / Sources / FWCurCon.cpp < prev    next >
Encoding:
Text File  |  1995-11-08  |  1.9 KB  |  60 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWCurCon.cpp
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    © 1993, 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWOS.hpp"
  11.  
  12. #ifndef FWCURSOR_H
  13. #include "FWCursor.h"
  14. #endif
  15.  
  16. //========================================================================================
  17. //    Runtime Informations
  18. //========================================================================================
  19.  
  20. #if FW_LIB_EXPORT_PRAGMAS
  21. #pragma lib_export on
  22. #endif
  23.  
  24. #ifdef FW_BUILD_MAC    
  25. #pragma segment fwosmisc
  26. #endif
  27.  
  28. //========================================================================================
  29. // System Global Cursors
  30. //========================================================================================
  31.  
  32. #ifdef FW_BUILD_MAC
  33. // ??? JEL CHANGE THESE BACK TO const FW_CCursor WHEN RAINBOW BUG IS FIXED
  34. FW_CCursor FW_gArrowCursor;
  35. FW_CCursor FW_gIBeamCursor(iBeamCursor, TRUE);
  36. FW_CCursor FW_gCrossHairCursor(crossCursor, TRUE);
  37. FW_CCursor FW_gWaitCursor(watchCursor, TRUE);
  38. FW_CCursor FW_gOpenHandCursor(128, FALSE);
  39. FW_CCursor FW_gClosedHandCursor(129, FALSE);
  40. FW_CCursor FW_gSizeWECursor(130, FALSE);            
  41. FW_CCursor FW_gSizeNSCursor(131, FALSE);            
  42. FW_CCursor FW_gSizeNWSECursor(132, FALSE);        
  43. FW_CCursor FW_gSizeNESWCursor(133, FALSE);        
  44. #endif
  45.  
  46. #ifdef FW_BUILD_WIN
  47. FW_CCursor FW_gArrowCursor(IDC_ARROW);
  48. FW_CCursor FW_gIBeamCursor(IDC_IBEAM);
  49. FW_CCursor FW_gCrossHairCursor(IDC_CROSS);
  50. FW_CCursor FW_gWaitCursor(IDC_WAIT);
  51. FW_CCursor FW_gSizeWECursor(IDC_SIZEWE);            
  52. FW_CCursor FW_gSizeNSCursor(IDC_SIZENS);            
  53. FW_CCursor FW_gSizeNWSECursor(IDC_SIZENWSE);        
  54. FW_CCursor FW_gSizeNESWCursor(IDC_SIZENESW);        
  55.  
  56. FW_CCursor FW_gOpenHandCursor(128, FALSE);
  57. FW_CCursor FW_gClosedHandCursor(129, FALSE);
  58. #endif
  59.  
  60.